emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Thierry Banel <tbanelwebmin@free.fr>
To: emacs-orgmode@gnu.org
Subject: Re: evaluate cpp snippet in org babel with default includes and customized entry point
Date: Sat, 16 Sep 2017 10:33:58 +0200	[thread overview]
Message-ID: <59BCE1F6.3060406@free.fr> (raw)
In-Reply-To: <877ewz9j4x.fsf@gmail.com>

A starting point could be as follows.
Type C-c C-c to evaluate.
Type C-c C-v v to expand the source.

#+BEGIN_SRC C++ :flags -std=c++11

#include <vector>
#include <iostream>
using namespace std;

class Solution {
public:
     vector<int> twoSum(vector<int>& nums, int target) {
       vector<int> result;
       result.push_back(0);
       result.push_back(1);
       return result;
     }
};

vector<int> nums = {2, 7, 11, 15};
int target = 9;

int main()
{
   Solution solution;
   for (int x : solution.twoSum(nums,target))
     cout<<x<<"\n";
}

#+END_SRC

#+RESULTS:
| 0 |
| 1 |



On 16/09/2017 09:50, Amos Bird wrote:
>
> Hi
>
> I'd like to write a blog about leetcode solutions in c++. How can I 
> evaluate those c++ code snippet using org babel?
>
>
>     1 Array
>
>
>       1.1 Two Sum
>
> Given an array of integers, return indices of the two numbers such 
> that they add up to a specific target.
>
> You may assume that each input would have exactly one solution, and 
> you may not use the same element twice.
>
> Example:
> Given nums = [2, 7, 11, 15], target = 9,
>
> Because nums[0] + nums[1] = 2 + 7 = 9,
> return [0, 1].
>
> |class  Solution  {
> public:
>      vector<int>  twoSum(vector<int>&nums,int  target)  {
>
>      }
> };
> |
>
> I need to add default headers and pass arguments to the entry class.
>
> –
> Amos Bird
> amosbird@gmail.com
>

  reply	other threads:[~2017-09-16  8:34 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-16  7:50 evaluate cpp snippet in org babel with default includes and customized entry point Amos Bird
2017-09-16  8:33 ` Thierry Banel [this message]
2017-09-16  8:37   ` Amos Bird
2017-09-16  8:54     ` Thierry Banel
2017-09-16  8:58       ` Amos Bird
2017-09-16  9:11         ` Thierry Banel
2017-09-16  9:14           ` Amos Bird
2017-09-16  9:36             ` Thierry Banel
2017-09-16  9:05       ` Thierry Banel
2017-09-16  8:46 ` Thierry Banel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=59BCE1F6.3060406@free.fr \
    --to=tbanelwebmin@free.fr \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).