This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .tweetDiv { | |
| box-shadow: 0 2px 3px rgb(0 0 0 / 12%); | |
| transition: all 0.3s cubic-bezier(.25,.8,.25,1); | |
| border-radius: 15px; | |
| } | |
| .tweetDiv:hover { | |
| box-shadow: 0 14px 20px rgb(0 0 0 / 25%); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if( | |
| dateBetween( | |
| now(), | |
| prop("Last Edited Time"), | |
| "days" | |
| ) == 0, | |
| "Today ✅", | |
| concat( | |
| format( | |
| dateBetween( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Vertical Align</title> | |
| <style> | |
| html, body { | |
| width: 100%; | |
| height: 100%; | |
| overflow: hidden; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.*; | |
| public class BinaryTreeTraversal { | |
| // Definition for a binary tree node. | |
| public static class TreeNode { | |
| int val; | |
| TreeNode left; | |
| TreeNode right; | |
| TreeNode(int x) { val = x; } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class LinkedListCycle { | |
| static class ListNode { | |
| int val; | |
| ListNode next; | |
| ListNode(int x) { | |
| val = x; | |
| next = null; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.HashSet; | |
| import java.util.Iterator; | |
| public class Intersection { | |
| public static int[] intersection(int[] nums1, int[] nums2) { | |
| /* | |
| ALGORITHM STEPS | |
| put everything from second array into hashset |