• Stars
    star
    11
  • Rank 1,694,829 (Top 34 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 3 years ago
  • Updated 10 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

my-codewars-Solutions

Isogram

isIsogram=str=>{
return [...new Set(str.toLowerCase())].length===str.length
}

Unique In Order

uniqueInOrder=(iterable)=>{ 
let arr=[];
for(let i=0;i<iterable.length;i++){
iterable[i]!=iterable[i+1]&&arr.push(iterable[i])
}
return arr;
} 

More Repositories

1

ziko.js

zikojs is a new javascript library with a focus on making coding effortless .
JavaScript
37
star
2

HIGH-TO-LOW

in this repository you will find codes in C and their equivalence in MIPS Assembly
Assembly
31
star
3

ZikoMatrix

Arduino library for creating and manipulating matrices of arbitrary size and data type. The library provides a Matrix class that can be used to create matrices, perform basic matrix operations
C++
20
star
4

awesome-processing

Processing is a flexible software sketchbook and a language for learning how to code. Since 2001, Processing has promoted software literacy within the visual arts and visual literacy within technology. There are tens of thousands of students, artists, designers, researchers, and hobbyists who use Processing for learning and prototyping.
Processing
19
star
5

zakarialaoui10

Config files for my GitHub profile.
JavaScript
12
star
6

mapfun

mapfun is a function that applies a mapping function to an infinite number of input elements, with options to skip certain elements and selectively apply the mapping to keys and/or values of objects. The origin of this function traces back to zikojs
JavaScript
8
star
7

ziko-addons

JavaScript
8
star
8

PowerMonitor

A C++ library designed to measure the electrical characteristics of AC circuits such as voltage, current, power, reactive power, and power factor...
C++
7
star
9

Greenlab-Challenge

JavaScript
6
star
10

only-for-psychopathic-programmers

C
5
star
11

dir2tree

a user-friendly Node.js tool for creating organized json tree from a root directory .
JavaScript
5
star
12

ziko-micro

4
star
13

_ziko-lottie

Lottie player element for zikojs
JavaScript
3
star
14

Vanilla-X

3
star
15

ziko-lottie

Lottie player element for zikojs
JavaScript
2
star
16

ziko-addons-template

JavaScript
1
star
17

npm-ziko-test

JavaScript
1
star