//1 annagrams
/*
* Develop a method which will define if two given words are anagrams of each other or not
*
* === Example ===
* = INPUT =
* str1 = "heater"
* str2 = "reheat"
* = OUTPUT =
* True
* Because characters in word "heater" can be rearranged to the word "reheat"
* @param str1
* @param str2
* @return if 2 words are anagrams for each other
*/
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}
// 2 SQL
users: id, name
roles: id, role_name, user_id
SELECT, JOIN, UPDATE
Find users w/o any roles
------------------
// 3 structures and complexity - Dictonary, LinkedList, Array