const nemo = ['nemo'];
function findNemo(array){ for (let i = 0; i < array.length; i++){ if(array[i] === 'nemo'){ console.log('Found Nemo der!') } } }
findNemo(nemo);
//here's the code, now have fun!
where is JS template?!!
i want same code in c
I want code in java. How can i find this?
Python version: https://github.com/theja-m/Data-Structures-and-Algorithms and https://github.com/VicodinAbuser/ZTM-DS-and-Algo-Python
C/C++ version: https://github.com/shree1999/Data-Structures-and-Algorithms
Golang: https://github.com/punitpandey/DS-Algo
Swift: https://github.com/preetamjadakar/datastructures-swift
Java: https://github.com/nimrod46/Data-Structures-and-Algorithms and https://github.com/satya-verma/Data-Structures-and-Algorithms--using-JAVA
C#: https://github.com/anirban-s/data-structures-and-algorithms
TypeScript: https://github.com/CoffeelessProgrammer/Data-Structures-and-Algorithms-TS
Can I get the C++ repo of this course?
how will find the same code in different language. suppose in python
In Python
nemo = ['nemo']
def findnemo(array):
for i in range(len(array)):
findnemo(nemo)