Skip to content

Instantly share code, notes, and snippets.

View eduuh's full-sized avatar
🎯

dushg eduuh

🎯
  • Nairobi
  • 05:37 (UTC +03:00)
View GitHub Profile
@eduuh
eduuh / ahk
Created December 12, 2021 21:40
LAlt & i::Send, {3}
LAlt & e::Send, {2}
LAlt & n::Send, {1}
LAlt & o::Send, {0}
LAlt & l::Send, {4}
LAlt & y::Send, {6}
LAlt & u::Send, {5}
LAlt & '::Send, {7}
LAlt & )::Send, {8}
var names = new[]
{
"Ana",
"Felipe",
"Emillia"
};
foreach (var name in names)
{
Console.WriteLine($"Hello {name}");
using System;
namespace Algorithms {
class CustomLinkedList {
Node head;
public class Node {
public int data;
public Node next;
#include<iostream>
using namespace std;
int main()
{
char ch;
cin >> ch;
if(ch >= 65 && ch <= 90)
cout << “UpperCase character”;
else if(ch >= 97 && ch <= 122)
cout << “Lower Case Character”;