Skip to content

Instantly share code, notes, and snippets.

View chinmaythosar's full-sized avatar

Chinmay Thosar chinmaythosar

  • Pune,India
View GitHub Profile
@chinmaythosar
chinmaythosar / octave.md
Created August 10, 2021 15:53 — forked from obstschale/octave.md
An Octave introduction cheat sheet.
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!");