diff --git a/README.md b/README.md
index 2fdc68a..fdfa1bc 100644
--- a/README.md
+++ b/README.md
@@ -17,6 +17,7 @@
* [Did you know that C++26 added `= delete("should have a reason")`?](https://github.com/tip-of-the-week/cpp/blob/master/tips/371.md)
* [Did you know that C++26 added `span.at`?](https://github.com/tip-of-the-week/cpp/blob/master/tips/370.md)
* [Did you know about C++26 simd proposal (1/N)?](https://github.com/tip-of-the-week/cpp/blob/master/tips/367.md)
+* [Did you know about C++26 simd proposal (2/N)?](https://github.com/tip-of-the-week/cpp/blob/master/tips/374.md)
* [Did you know about C++26 static reflection proposal (1/N)?](https://github.com/tip-of-the-week/cpp/blob/master/tips/361.md)
* [Did you know about C++26 static reflection proposal (2/N)?](https://github.com/tip-of-the-week/cpp/blob/master/tips/362.md)
* [Did you know about C++26 static reflection proposal (3/N)?](https://github.com/tip-of-the-week/cpp/blob/master/tips/363.md)
diff --git a/tips/374.md b/tips/374.md
new file mode 100644
index 0000000..093a059
--- /dev/null
+++ b/tips/374.md
@@ -0,0 +1,58 @@
+
+
+* **Did you know about C++26 simd proposal (2/N)?**
+
+ * https://wg21.link/P1928
+
+
+
+```cpp
+int main() {
+ std::array
+
+* **Can you implement function find which returns { true: if given element is found; false: otherwise }?**
+
+```cpp
+templateInfo
Example
Puzzle
+
+```cpp
+template