a) wszystkie elektrony walencyjne obu pierwiastków,
b) po dwa elektrony od każdego atomu azotu,
c) pięć elektronów od jednego i jeden od drugiego atomu azotu,
<keymap version="1" name="macOS My" parent="macOS System Shortcuts"> | |
<action id="EditorCloneCaretAbove"> | |
<keyboard-shortcut first-keystroke="ctrl open_bracket" /> | |
</action> | |
<action id="EditorCloneCaretBelow"> | |
<keyboard-shortcut first-keystroke="ctrl close_bracket" /> | |
</action> | |
<action id="Git.Branches"> | |
<keyboard-shortcut first-keystroke="shift ctrl b" /> | |
</action> |
#include <iostream> | |
using namespace std; | |
struct node { | |
int val; | |
node *next; | |
}; | |
void Add(node *&H, int x) { |
devices: ( | |
{ | |
name: "Wireless Mouse MX Master 3"; | |
smartshift: | |
{ | |
on: true; | |
threshold: 10; | |
}; | |
dpi: 800; | |
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
struct Person { | |
int wiek; | |
int wzrost; | |
float waga; | |
char kolorOczu[30]; |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
<style> | |
body { | |
display: flex; |
#include <iostream> | |
using namespace std; | |
void printTable(int tab[3][3]) { | |
for (int i = 0; i < 3; i++) { | |
cout << endl; | |
for (int j = 0; j < 3; j++) { | |
char l = tab[i][j] == 1 ? 'X' : tab[i][j] == 2 ? 'O' : ' '; |
# Blacklist files/folders in same directory as the .gitignore file | |
/* | |
# Whitelist some files | |
!.gitignore | |
!README.md | |
# Ignore all files named .DS_Store or ending with .log | |
**/.DS_Store | |
**.log |