GNU Octave is a high-level interpreted language, primarily intended for numerical computations.
(via GNU Octave)
Hint: I also mad an octave docset for Dash: https://github.com/obstschale/octave-docset
GNU Octave is a high-level interpreted language, primarily intended for numerical computations.
(via GNU Octave)
Hint: I also mad an octave docset for Dash: https://github.com/obstschale/octave-docset
import unittest | |
import sys | |
class Solution: | |
def merge(self, original, add, delete): | |
#Merge original and add in new string | |
out = original + add | |
#delete string | |
for x in delete: |
//Calculating Fibonacci without using any loops in O(n) | |
//No goal in particular just asked for a task. | |
#include<stdio.h> | |
int *arr; | |
int fib(int n); | |
int main(void) { | |
puts("Hello World!"); | |